home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Length Equivalents.sd < prev    next >
INI File  |  2004-06-28  |  6KB  |  225 lines

  1. [SUBJECT]
  2. Description=Converts bewteen different units of length
  3. ImageIndex=-1
  4. Folder=Mathematics
  5.  
  6.  
  7. [BODY_TEXT]
  8. ;<!-- Cut-N-Paste JavaScript from ISN Toolbox 
  9. ;Copyright 1996, Infohiway Server Network.  Restricted use is hereby
  10. ;granted (both personal and commercial use OK so long as this code is 
  11. ;not *directly* sold), providing this notice is buried somewhere deep
  12. ;in your HTML document.  A link to http://www.infohiway.com is always 
  13. ;appreciated, but is absolutely and positively not necessary. :-) -->
  14. ;<script language="JavaScript">
  15. ;
  16. ;<!-- Hide JavaScript from Java-Impaired Browsers
  17. ;
  18. ;function initArray() {
  19. ;
  20. ;  this.length = initArray.arguments.length;
  21. ;
  22. ;  for (var i = 0; i < this.length; i++) {
  23. ;
  24. ;    this[i] = initArray.arguments[i];
  25. ;
  26. ;    }
  27. ;
  28. ;  }
  29. ;
  30. ;/* Please don't ask about this work-around. It works... We're sure arrays
  31. ;
  32. ;    will be better supported soon. */
  33. ;
  34. ;var isn01 = new initArray("4b","5b","8b","8b");
  35. ;
  36. ;isn01[0] = "~01~10.3937~20.03281~30.01094~40.01~50.0004971~60.00001~70.000006214~8";
  37. ;
  38. ;isn01[1] = "~02.540~11~20.08333~30.02778~40.0254~50.001263~60.0000254~70.00001578~8";
  39. ;
  40. ;isn01[2] = "~030.48~112~21~30.3333~40.3048~50.01515~60.0003048~70.0001894~8";
  41. ;
  42. ;isn01[3] = "~091.44~136~23~31~40.9144~50.04545~60.0009144~70.0005682~8";
  43. ;
  44. ;isn01[4] = "~0100~139.37~23.281~31.0936~41~50.04971~60.001~70.0006214~8";
  45. ;
  46. ;isn01[5] = "~02012~1792~266~322~420.12~51~60.0212~70.0125~8";
  47. ;
  48. ;isn01[6] = "~0100000~139370~23281~31093.6~41000~549.71~61~70.6214~8";
  49. ;
  50. ;isn01[7] = "~0160934~163360~25280~31760~41609~580~61.609~71~8";
  51. ;
  52. ;
  53. ;
  54. ;
  55. ;
  56. ;function lenCon() {
  57. ;
  58. ;  // First, get the variables checked by the user
  59. ;
  60. ;  for (var i = 0; i < 8; i++) {
  61. ;
  62. ;    if (document.isnform01.leni[i].checked) {
  63. ;
  64. ;      leni = i;
  65. ;
  66. ;      leninm = document.isnform01.leni[i].value;
  67. ;
  68. ;      }
  69. ;
  70. ;    }
  71. ;
  72. ;  for (var i = 0; i < 8; i++) {
  73. ;
  74. ;    if (document.isnform01.leno[i].checked) {
  75. ;
  76. ;      leno = i;
  77. ;
  78. ;      lenonm = document.isnform01.leno[i].value;
  79. ;
  80. ;      }
  81. ;
  82. ;    }
  83. ;
  84. ;  // Now grab the number input by user and parse to be sure numeric
  85. ;
  86. ;  useri = document.isnform01.leninp.value;
  87. ;
  88. ;  if (useri == 0) {
  89. ;
  90. ;    useri = 1;
  91. ;
  92. ;    document.isnform01.leninp.value = useri;
  93. ;
  94. ;    }
  95. ;
  96. ;  mulstr = isn01[leni];
  97. ;
  98. ;  picker = "~" + leno;
  99. ;
  100. ;  ps = mulstr.indexOf(picker);
  101. ;
  102. ;  leno++;
  103. ;
  104. ;  picker = "~" + leno;
  105. ;
  106. ;  ps1 = mulstr.indexOf(picker);
  107. ;
  108. ;  mulstr = mulstr.substring((ps + 2),ps1);
  109. ;
  110. ;  ps = (useri * mulstr);
  111. ;
  112. ;  picker = "";
  113. ;
  114. ;  picker += ps;
  115. ;
  116. ;  ps1 = picker.indexOf(".");
  117. ;
  118. ;  if (ps1 > -1) {
  119. ;
  120. ;    // Correct for binary/floating point conversion error
  121. ;
  122. ;    ps = ps + .000001;
  123. ;
  124. ;    picker = "";
  125. ;
  126. ;    picker += ps;
  127. ;
  128. ;    ps2 = picker.indexOf("e");
  129. ;
  130. ;    if (ps2 < 0) {
  131. ;
  132. ;      picker = picker.substring(0,(ps1 + 6));
  133. ;
  134. ;      }
  135. ;
  136. ;    if (ps2 == 0 || ps2 > 0) {
  137. ;
  138. ;      ps3 = picker.indexOf("00000");
  139. ;
  140. ;      if (ps3 > 0) {
  141. ;
  142. ;        picker = picker.substring(0,ps3 + 1) + picker.substring(ps2,picker.length);
  143. ;
  144. ;        }
  145. ;
  146. ;      }
  147. ;
  148. ;    }
  149. ;
  150. ;  picker = useri + " " + leninm + " = " + picker + " " + lenonm;
  151. ;
  152. ;  document.isnform01.lenout.value = picker;
  153. ;
  154. ;  }
  155. ;
  156. ;
  157. ;
  158. ;// End Hiding -->
  159. ;
  160. ;
  161. ;
  162. ;</script>
  163. ;<form name="isnform01">
  164. ;<table border="1" width="486" summary="">
  165. ;
  166. ;<tr><td colspan="9" align="center"><font color="blue"><b>`caption`</b></font></td></tr>
  167. ;
  168. ;<tr><td colspan="9" valign="top"><font size="1"><b>First, type the number you wish converted here: </B>
  169. ;
  170. ;<input type="text" name="leninp" size="30" value="" onChange="lenCon();"><br><b>Then, click radio buttons for desired conversion:</font></B></td></tr>
  171. ;
  172. ;<tr><td align="center"><font color="red" size="1"><b>From:</b></font></td>
  173. ;
  174. ;<td align="center" valign="top"><font size="1">Centimeters<br><input type="radio" name="leni" value="Centimeters" checked onClick = ""></font></td>
  175. ;
  176. ;<td align="center" valign="top"><font size="1">Inches<br><input type="radio" name="leni" value="Inches" onClick = ""></font></td>
  177. ;
  178. ;<td align="center" valign="top"><font size="1">feet<br><input type="radio" name="leni" value="Feet" onClick = ""></font></td>
  179. ;
  180. ;<td align="center" valign="top"><font size="1">Yards<br><input type="radio" name="leni" value="Yards" onClick = ""></font></td>
  181. ;
  182. ;<td align="center" valign="top"><font size="1">Meters<br><input type="radio" name="leni" value="Meters" onClick = ""></font></td>
  183. ;
  184. ;<td align="center" valign="top"><font size="1">Chains<br><input type="radio" name="leni" value="Chains" onClick = ""></font></td>
  185. ;
  186. ;<td align="center" valign="top"><font size="1">Kilometers<br><input type="radio" name="leni" value="Kilometers" onClick = ""></font></td>
  187. ;
  188. ;<td align="center" valign="top"><font size="1">Miles<br><input type="radio" name="leni" value="Miles" onClick = ""></font></td></tr>
  189. ;
  190. ;<tr><td align="center"><font color="red" size="1"><b>To:</b></font></td>
  191. ;
  192. ;<td align="center" valign="top"><font size="1">Centimeters<br><input type="radio" name="leno" value="Centimeters" onClick = ""></font></td>
  193. ;
  194. ;<td align="center" valign="top"><font size="1">Inches<br><input type="radio" name="leno" value="Inches" checked onClick = ""></font></td>
  195. ;
  196. ;<td align="center" valign="top"><font size="1">Feet<br><input type="radio" name="leno" value="Feet" onClick = ""></font></td>
  197. ;
  198. ;<td align="center" valign="top"><font size="1">Yards<br><input type="radio" name="leno" value="Yards" onClick = ""></font></td>
  199. ;
  200. ;<td align="center" valign="top"><font size="1">Meters<br><input type="radio" name="leno" value="Meters" onClick = ""></font></td>
  201. ;
  202. ;<td align="center" valign="top"><font size="1">Chains<br><input type="radio" name="leno" value="Chains" onClick = ""></font></td>
  203. ;
  204. ;<td align="center" valign="top"><font size="1">Kilometers<br><input type="radio" name="leno" value="Kilometers" onClick = ""></font></td>
  205. ;
  206. ;<td align="center" valign="top"><font size="1">Miles<br><input type="radio" name="leno" value="Miles" onClick = ""></font></td></tr>
  207. ;
  208. ;<tr><td colspan="9" align="center" valign="top"><font size="1"><input type="button" value=" Click for Conversion " onClick="lenCon();"> 
  209. ;<input type="reset" value=" Reset Values "><br><input type="text" name="lenout" size="60" value="" onClick="lenCon();">
  210. ;
  211. ;</font></td></tr>
  212. ;
  213. ;</table></form>
  214. ;
  215. ;<p>
  216. ;
  217. ;
  218.  
  219.  
  220. [`Caption`]
  221. Kind=S
  222. Value=Length Equivalents
  223.  
  224.  
  225.